home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ARexxTools / RexxOpt_1_8.lha / RexxOpt / RexxOpt.readme < prev    next >
Encoding:
Text File  |  1996-01-18  |  1.4 KB  |  35 lines

  1. Short: improves the speed of ARexx scripts
  2. Type: util/rexx
  3. Author: 42@studbox.uni-stuttgart.de
  4. Uploader: sibilluh@tick.informatik.uni-stuttgart.de
  5.  
  6.  
  7.                       RexxOpt - ARexx script optimizer
  8.                    Mailware © 1993-96 by Proxity Softworks
  9.  
  10. RexxOpt optimizes your ARexx scripts by removing all information not
  11. necessary.  This results in a faster execution speed, making working with
  12. ARexx much more comfortable.
  13.  
  14. When run in default mode (no switch given in command line) the following is
  15. done:
  16.  
  17.   - all unnecessary blank characters (ASCII 9, 32 and 160) are removed
  18.   - all comments are removed
  19.   - consecutive strings are merge to one single string
  20.   - ; is inserted in front of any DO within the script
  21.   - all blank characters outside strings and comments are replaced by
  22.     <space> (ASCII 32)
  23.   - all (remaining) lines are put into one single line
  24.   - a new comment line is put in front of the script because ARexx requires
  25.     a script to begin with a comment.
  26.  
  27. This is V1.8, an update to V1.7.
  28.  
  29.      - Source file is now closed as soon as its contents are completely read
  30.        into memory. It's now possible to overwrite the source file with the
  31.        optimized version without leaving a backup of the original.
  32.      - Documention uses external file for PROXITY SOFTWORKS Information again.
  33.      - RexxOpt is now Mailware. This means you have to send me an EMail or a
  34.        postcard if you use RexxOpt regularly. 
  35.